 .best-seller-section {
     padding: 40px 0;
 }

 .section-title {
     font-size: 28px;
     font-weight: 700;
     color: #2c3e50;
     margin-bottom: 8px;
 }

 .section-subtitle {
     color: #6c757d;
     font-size: 14px;
     margin-bottom: 30px;
 }

 .product-card {
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     /* margin-bottom: 20px; */
     height: 100%;
     min-height: 400px;
 }

 .product-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
 }

 .product-image {
     position: relative;
     height: 220px;
     overflow: hidden;
     background: #f8f9fa;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 15px;
 }

 .product-image img {
     max-width: 100%;
     max-height: 100%;
     object-fit: contain;
 }

 .product-info {
     padding: 18px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     flex-grow: 1;
 }

 .product-title {
     font-size: 13px;
     font-weight: 500;
     color: #2c3e50;
     margin-bottom: 12px;
     line-height: 1.4;
     height: 52px;
     overflow: hidden;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
 }

 .price-section {
     margin-bottom: 12px;
 }

 .current-price {
     font-size: 16px;
     font-weight: 700;
     color: #2c3e50;
 }

 .original-price {
     font-size: 12px;
     color: #6c757d;
     text-decoration: line-through;
     margin-left: 8px;
 }

 .btn-group {
     display: flex;
     gap: 8px;
 }

 .btn-cart {
     flex: 0 0 35px;
     height: 32px;
     border: 1px solid #ddd;
     background: white;
     color: #666;
     border-radius: 4px;
     font-size: 12px;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .btn-cart:hover {
     background: #f8f9fa;
     border-color: #007bff;
 }

 .btn-add-cart {
     flex: 1;
     height: 32px;
     background: #1a365d;
     color: white;
     border: none;
     border-radius: 4px;
     font-size: 11px;
     font-weight: 500;
     transition: background 0.3s ease;
 }

 .btn-add-cart:hover {
     background: #e61f24;
 }

 .carousel-control-prev,
 .carousel-control-next {
     width: 45px;
     height: 45px;
     background: #1a365d;
     border-radius: 50%;
     top: 50%;
     transform: translateY(-50%);
     opacity: 0.9;
     border: 2px solid white;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
 }

 .carousel-control-prev {
     left: -22px;
 }

 .carousel-control-next {
     right: -22px;
 }

 .carousel-control-prev:hover,
 .carousel-control-next:hover {
     opacity: 1;
     background: #e61f24;
 }

 .carousel-control-prev-icon,
 .carousel-control-next-icon {
     background-size: 18px 18px;
 }

 .carousel-indicators {
     bottom: -50px;
     margin: 0;
 }

 .carousel-indicators [data-bs-target] {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: #1a365d;
     opacity: 0.4;
     margin: 0 4px;
     border: none;
     transition: all 0.3s ease;
 }

 .carousel-indicators .active {
     opacity: 1;
     transform: scale(1.2);
 }

 .view-all-btn {
     background: #1a365d;
     color: white;
     border: none;
     padding: 12px 30px;
     border-radius: 5px;
     font-weight: 500;
     margin-top: 40px;
     transition: all 0.3s ease;
     box-shadow: 0 2px 4px rgba(26, 54, 93, 0.2);
 }

 .view-all-btn:hover {
     background: #e61f24;
     color: white;
     transform: translateY(-1px);
     box-shadow: 0 4px 8px rgba(26, 54, 93, 0.3);
 }

 @media (max-width: 768px) {
     .product-card {
         margin-bottom: 15px;
         min-height: 350px;
     }

     .product-image {
         height: 180px;
     }

     .carousel-control-prev,
     .carousel-control-next {
         display: none;
     }

     .section-title {
         font-size: 24px;
     }

     .current-price {
         font-size: 15px;
     }

     .product-title {
         font-size: 12px;
         height: 48px;
     }
 }

 @media (max-width: 576px) {
     .product-card {
         min-height: 320px;
     }

     .product-image {
         height: 160px;
         padding: 10px;
     }

     .product-info {
         padding: 15px;
     }
 }

 .product-placeholder {
     width: 160px;
     height: 130px;
     background: #e9ecef;
     border-radius: 4px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #6c757d;
 }